comparison operators in python

26

number_of_seats = 30
numbre_of_guests = 25

if numbre_of_guests <= number_of_seats:
   print("it's ok")
else: 
   print("it's not ok")
'GE' in VINIX
>>> False

'GOOGL' in VINIX
>>> True

Comments

Submit
0 Comments